home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WWTCLKit / WWTCLWidgetsPalette.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  1.3 KB  |  50 lines

  1. /* Copyright 1993 Michael B. Johnson
  2.  * Permission to use, copy, modify, and distribute this
  3.  * software and its documentation for any non-commercial 
  4.  * purpose and without fee is hereby granted, provided that the 
  5.  * above copyright notice appears in all copies.  Michael B. Johnson
  6.  * makes no representations about the suitability of this
  7.  * software for any purpose.  It is provided "as is" without
  8.  * express or implied warranty.
  9.  *
  10.  * Permission to use, copy, modify or distribute this software
  11.  * and its documentation for any commercial purpose must be
  12.  * confirmed in writing with Michael B. Johnson.  He can be
  13.  * contacted at:
  14.  *              20 Ames St. E15-023G    
  15.  *              Cambridge, MA 02141
  16.  *              (617) 547 0563
  17.  *              
  18.  */
  19.  
  20. #import <apps/InterfaceBuilder.h>
  21.  
  22. @interface WWTCLWidgetsPalette:IBPalette 
  23. {
  24.   id  timerData;
  25.   id  timerView;
  26.   id  tclInterpData;
  27.   id  tclInterpView;
  28.   id  linHorizTW;
  29.   id  linVertTW;
  30.   id  radHorizTW;
  31.   id  radVertTW;
  32.   id  switchButton;
  33.   id  textField;
  34.   id  movieView;
  35.   id  movieVarView;
  36.   id  movieProcView;
  37. }
  38.  
  39. - setLinHorizTW:object;
  40. - setLinVertTW:object;
  41. - setRadHorizTW:object;
  42. - setRadVertTW:object;
  43. - setSwitchButton:object;
  44. - setTextField:object;
  45. - setMovieView:object;
  46. - setMovieVarView:object;
  47. - setMovieProcView:object;
  48.  
  49. @end
  50.